home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacGames Sampler
/
PHT MacGames Bundle.iso
/
MacSource Folder
/
Samples from the CD
/
C and C++
/
POSIX
/
ThinkCPosix
/
Abort.c
next >
Wrap
Text File
|
1992-09-11
|
123b
|
10 lines
/* $Id: $ */
#include "ThinkCPosix.h"
void Abort(void)
{
fprintf(stderr, "Abnormal program termination\n");
exit(3);
}